home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Astronomy / Moon / Source / MoonIconView.h < prev    next >
Text File  |  1993-01-19  |  493b  |  23 lines

  1. /* MoonIconView.h
  2.  * Part of the Moon application for the NeXT computer.
  3.  * Author:  Geoffrey S. Knauth
  4.  * Date:    January 4, 1992
  5.  *
  6.  * Permission to copy this program is hereby granted under the terms
  7.  * of the Free Software Foundation's GNU General Public License.
  8.  */
  9.  
  10. #import <appkit/View.h>
  11.  
  12. @interface MoonIconView : View
  13. {
  14.     float phase;
  15. }
  16.  
  17. - initFrame :(const NXRect *)frameRect;
  18. - drawSelf :(const NXRect *)rects :(int)rectCount;
  19. - (float) phase;
  20. - setPhase :(float) phase;
  21.  
  22. @end
  23.